Remove debug g_print()s.
authorMatthias Clasen <maclas@gmx.de>
Thu, 27 Nov 2003 23:08:51 +0000 (23:08 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 27 Nov 2003 23:08:51 +0000 (23:08 +0000)
Fri Nov 28 00:09:10 2003  Matthias Clasen  <maclas@gmx.de>

* gtk/gtkfilechooserentry.c: Remove debug g_print()s.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkfilechooserentry.c

index 58b57c02702095f7aafc696893cc03ec21242d9a..75e5c12b878760f3eb72614b3ad623963847d545 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Nov 28 00:09:10 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkfilechooserentry.c: Remove debug g_print()s. 
+
 Thu Nov 27 22:17:50 2003  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkuimanager.c: Remove debug define.
index 58b57c02702095f7aafc696893cc03ec21242d9a..75e5c12b878760f3eb72614b3ad623963847d545 100644 (file)
@@ -1,3 +1,7 @@
+Fri Nov 28 00:09:10 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkfilechooserentry.c: Remove debug g_print()s. 
+
 Thu Nov 27 22:17:50 2003  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkuimanager.c: Remove debug define.
index 58b57c02702095f7aafc696893cc03ec21242d9a..75e5c12b878760f3eb72614b3ad623963847d545 100644 (file)
@@ -1,3 +1,7 @@
+Fri Nov 28 00:09:10 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkfilechooserentry.c: Remove debug g_print()s. 
+
 Thu Nov 27 22:17:50 2003  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkuimanager.c: Remove debug define.
index 58b57c02702095f7aafc696893cc03ec21242d9a..75e5c12b878760f3eb72614b3ad623963847d545 100644 (file)
@@ -1,3 +1,7 @@
+Fri Nov 28 00:09:10 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkfilechooserentry.c: Remove debug g_print()s. 
+
 Thu Nov 27 22:17:50 2003  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkuimanager.c: Remove debug define.
index 58b57c02702095f7aafc696893cc03ec21242d9a..75e5c12b878760f3eb72614b3ad623963847d545 100644 (file)
@@ -1,3 +1,7 @@
+Fri Nov 28 00:09:10 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkfilechooserentry.c: Remove debug g_print()s. 
+
 Thu Nov 27 22:17:50 2003  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkuimanager.c: Remove debug define.
index 3111dbc50984f921edca5e85de5c95d613e0eb11..7b1a3eb2674be33b81ee8e7c64e2aeec7b41bfbc 100644 (file)
@@ -244,8 +244,6 @@ completion_idle_callback (GtkFileChooserEntry *chooser_entry)
   gchar *common_prefix = NULL;
   GtkFilePath *unique_path = NULL;
 
-  g_print ("completion_idle_callback()\n");
-
   chooser_entry->completion_idle = NULL;
 
   if (strcmp (chooser_entry->file_part, "") == 0)
@@ -264,7 +262,6 @@ completion_idle_callback (GtkFileChooserEntry *chooser_entry)
                                   NULL); /* NULL-GError */
 
   chooser_entry->in_change = TRUE;
-  g_print ("Clearing list and filling it\n");
   gtk_list_store_clear (chooser_entry->completion_store);
 
   for (tmp_list = child_paths; tmp_list; tmp_list = tmp_list->next)
@@ -315,7 +312,6 @@ completion_idle_callback (GtkFileChooserEntry *chooser_entry)
          gtk_file_info_free (info);
        }
     }
-  g_print ("List filled\n");
   chooser_entry->in_change = FALSE;
 
   if (unique_path)
@@ -387,10 +383,6 @@ gtk_file_chooser_entry_do_insert_text (GtkEditable *editable,
   GtkFileChooserEntry *chooser_entry = GTK_FILE_CHOOSER_ENTRY (editable);
   char *tmp;
 
-  tmp = g_strndup (new_text, new_text_length);
-  g_print ("gtk_file_chooser_entry_do_insert_text (%s)\n", tmp);
-  g_free (tmp);
-  
   parent_editable_iface->do_insert_text (editable, new_text, new_text_length, position);
 
   if (!chooser_entry->in_change &&
@@ -432,8 +424,6 @@ gtk_file_chooser_entry_changed (GtkEditable *editable)
   GtkFilePath *folder_path;
   gchar *file_part;
 
-  g_print ("gtk_file_chooser_entry_changed ()\n");
-
   text = gtk_entry_get_text (GTK_ENTRY (editable));
 
   if (!chooser_entry->file_system ||